type runtime.gcBitsArena
12 uses
runtime (current package)
mheap.go#L2107: type gcBitsArena struct {
mheap.go#L2111: next *gcBitsArena
mheap.go#L2117: free *gcBitsArena
mheap.go#L2118: next *gcBitsArena // Read atomically. Write atomically under lock.
mheap.go#L2119: current *gcBitsArena
mheap.go#L2120: previous *gcBitsArena
mheap.go#L2125: func (b *gcBitsArena) tryAlloc(bytes uintptr) *gcBits {
mheap.go#L2146: head := (*gcBitsArena)(atomic.Loadp(unsafe.Pointer(&gcBitsArenas.next)))
mheap.go#L2237: func newArenaMayUnlock() *gcBitsArena {
mheap.go#L2238: var result *gcBitsArena
mheap.go#L2241: result = (*gcBitsArena)(sysAlloc(gcBitsChunkBytes, &memstats.gcMiscSys))
mheap.go#L2254: if uintptr(unsafe.Offsetof(gcBitsArena{}.bits))&7 == 0 {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |